翻訳と辞書
Words near each other
・ Level Park-Oak Park, Michigan
・ Level Plains, Alabama
・ Level Plane Records
・ Level Platforms
・ Level playing field
・ Level railway station
・ Level repulsion
・ Level Run, Virginia
・ Level sensor
・ Level set
・ Level set (data structures)
・ Level set method
・ Level Seven (hacking group)
・ Level spreader
・ Level staff
Level structure
・ LEVEL Studios
・ Level Up
・ Level Up (comics)
・ Level Up (film)
・ Level Up (song)
・ Level Up (TV series)
・ Level Up (UK TV programme)
・ Level Up! Games
・ Level Valley
・ Level Vodka
・ Level, Ohio
・ Level-5 (company)
・ Level-sensitive scan design
・ Level-spacing distribution


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Level structure : ウィキペディア英語版
Level structure
In the mathematical subfield of graph theory a level structure of an undirected graph is a partition of the vertices into subsets that have the same distance from a given root vertex.〔.〕
==Definition and construction==
Given a connected graph ''G'' = (''V'', ''E'') with ''V'' the set of vertices and ''E'' the set of edges, and with a root vertex ''r'', the level structure is a partition of the vertices into subsets ''Li'' called levels, consisting of the vertices at distance ''i'' from ''r''. Equivalently, this set may be defined by setting ''L''0 = , and then, for ''i'' > 0, defining ''Li'' to be the set of vertices that are neighbors to vertices in ''L''''i'' − 1 but are not themselves in any earlier level.〔
The level structure of a graph can be computed by a variant of breadth first search:
algorithm level-BFS(G, r):
Q ←
for ℓ from 0 to ∞:
process(Q, ℓ) ''// the set Q holds all vertices at level ℓ''
mark all vertices in Q as discovered
Q' ← {}
for u in Q:
for each edge (u, v):
if v is not yet marked:
add v to Q'
if Q' is empty:
return
Q ← Q'

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Level structure」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.